/*!*******************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[11].oneOf[12].use[3]!./styles/news-prose.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************/
/*
 * News article Markdown styling.
 * Imported by the news route pages, so it only ships when a news page loads.
 *
 * Depends on Tailwind's slate/indigo palette (via CSS custom properties or
 * direct rgb() values as used here). Also picks up the --font-jetbrains
 * CSS variable if the host sets one via next/font — otherwise falls back
 * to system monospace.
 */

.news-prose {
  color: rgb(51 65 85); /* slate-700 */
  font-size: 1.0625rem; /* 17px */
  line-height: 1.9;
  letter-spacing: 0.005em;
  word-spacing: 0.02em;
  text-wrap: pretty;
}

.news-prose > * + * {
  margin-top: 1.4em;
}

.news-prose p {
  color: rgb(51 65 85);
}

.news-prose h2 {
  margin-top: 3em;
  margin-bottom: 0.8em;
  font-size: 1.75rem;
  font-weight: 700;
  color: rgb(15 23 42);
  letter-spacing: -0.015em;
  line-height: 1.35;
  scroll-margin-top: 6rem;
}

@media (min-width: 640px) {
  .news-prose h2 {
    font-size: 2rem;
  }
}

.news-prose h3 {
  margin-top: 2.25em;
  margin-bottom: 0.6em;
  font-size: 1.3rem;
  font-weight: 600;
  color: rgb(15 23 42);
  letter-spacing: -0.008em;
  line-height: 1.4;
  scroll-margin-top: 6rem;
}

@media (min-width: 640px) {
  .news-prose h3 {
    font-size: 1.4rem;
  }
}

.news-prose h4 {
  margin-top: 1.75em;
  margin-bottom: 0.4em;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgb(30 41 59);
  line-height: 1.5;
}

.news-prose > h2:first-child,
.news-prose > h3:first-child {
  margin-top: 0;
}

.news-prose > p:first-of-type {
  font-size: 1.15rem;
  line-height: 1.85;
  color: rgb(30 41 59);
}

.news-prose a {
  color: rgb(79 70 229);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgb(199 210 254);
  text-decoration-thickness: 1px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
.news-prose a:hover {
  color: rgb(67 56 202);
  text-decoration-color: currentColor;
}

.news-prose strong {
  color: rgb(15 23 42);
  font-weight: 600;
}

.news-prose em {
  color: rgb(30 41 59);
}

.news-prose ul,
.news-prose ol {
  padding-left: 1.5em;
  margin-top: 1.2em;
}
.news-prose ul {
  list-style: none;
  padding-left: 0;
}
.news-prose ul > li {
  position: relative;
  padding-left: 1.5em;
}
.news-prose ul > li::before {
  content: "";
  position: absolute;
  left: 0.35em;
  top: 0.85em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgb(129 140 248);
}
.news-prose ol {
  list-style: decimal;
}
.news-prose ol > li::marker {
  color: rgb(99 102 241);
  font-weight: 600;
  font-family: var(--font-jetbrains), "JetBrains Mono", monospace;
  font-size: 0.95em;
}
.news-prose li {
  margin: 0.55em 0;
  line-height: 1.85;
}
.news-prose li > p {
  margin: 0.4em 0;
}
.news-prose li > ul,
.news-prose li > ol {
  margin-top: 0.4em;
}

.news-prose blockquote {
  margin: 2em 0;
  padding: 1em 1.5em;
  border-left: 3px solid rgb(99 102 241);
  background: rgba(238, 242, 255, 0.5);
  border-radius: 0 0.5rem 0.5rem 0;
  color: rgb(51 65 85);
  font-style: normal;
}
.news-prose blockquote p {
  margin: 0.4em 0;
}
.news-prose blockquote p:first-child {
  margin-top: 0;
}
.news-prose blockquote p:last-child {
  margin-bottom: 0;
}

.news-prose code {
  font-family: var(--font-jetbrains), "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.9em;
  background: rgb(238 242 255);
  color: rgb(67 56 202);
  padding: 0.15em 0.45em;
  border-radius: 0.3rem;
  font-weight: 500;
}

.news-prose pre {
  background: rgb(15 23 42);
  color: rgb(226 232 240);
  padding: 1.2em 1.4em;
  border-radius: 0.75rem;
  overflow-x: auto;
  font-family: var(--font-jetbrains), "JetBrains Mono", monospace;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 2em 0;
  border: 1px solid rgb(30 41 59);
}
.news-prose pre code {
  background: transparent;
  color: inherit;
  padding: 0;
  font-weight: 400;
  font-size: inherit;
}

.news-prose table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
  border: 1px solid rgb(226 232 240);
  border-radius: 0.75rem;
  overflow: hidden;
  margin: 2em 0;
  background: white;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}
.news-prose th,
.news-prose td {
  padding: 0.75em 1em;
  text-align: left;
  border-bottom: 1px solid rgb(241 245 249);
}
.news-prose th {
  background: rgb(248 250 252);
  font-weight: 600;
  color: rgb(30 41 59);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-family: var(--font-jetbrains), "JetBrains Mono", monospace;
  border-bottom: 1px solid rgb(226 232 240);
}
.news-prose tbody tr:last-child td {
  border-bottom: none;
}
.news-prose tbody tr:hover {
  background: rgba(238, 242, 255, 0.3);
}

.news-prose hr {
  border: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgb(226 232 240) 20%,
    rgb(226 232 240) 80%,
    transparent 100%
  );
  margin: 3em 0;
}

.news-prose img {
  border-radius: 0.75rem;
  margin: 2em auto;
  max-width: 100%;
  height: auto;
}

